char letter = 'A'; // Declare variable letter and assign 'A'
println(letter); // Prints "A" to the console
int n = letter; // Assign the numerical value 'A' to variable n
println(n); // Prints "65" to the console
